Loads variable value from a file. (The value was previously saved using <var_save> command.)
Syntax:
<var_load>("Variable", "File")
Variable
Variable to load value from file.
File
The file created by <var_save> command that contains variable value.
Example:
<#> This macro demonstrates use of <var_load> and <var_save>
commands
<#>
<cmds>
<varset>("vName=John","")
<var_save>("vName","c:\_myvars.dat")
<varset>("vName=Michael","")
<var_load>("vName","c:\_myvars.dat")
<msg>(100,100,"vName","Message",1)